home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
One Click 27
/
CD da revista One Click #27 - Photoshop Megapack (2005).iso
/
Interface
/
it.dig
/
scripts
/
__Packages
/
mx
/
utils
/
IteratorImpl.as
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-10-28
|
358 b
|
19 lines
class mx.utils.IteratorImpl
{
var _collection;
var _cursor;
function IteratorImpl(coll)
{
this._collection = coll;
this._cursor = 0;
}
function hasNext()
{
return this._cursor < this._collection.getLength();
}
function next()
{
return this._collection.getItemAt(this._cursor++);
}
}